home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Online / smbfs / source / include / smb / smb_mount.h < prev    next >
C/C++ Source or Header  |  2000-12-02  |  563b  |  35 lines

  1. /*
  2.  * $Id: smb_mount.h,v 1.3 2000/12/02 13:04:58 olsen Exp $
  3.  *
  4.  * :ts=8
  5.  *
  6.  * smb_mount.h
  7.  *
  8.  * Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
  9.  * Modified for use with AmigaOS by Olaf Barthel <olsen@sourcery.han.de>
  10.  */
  11.  
  12. #ifndef _LINUX_SMB_MOUNT_H
  13. #define _LINUX_SMB_MOUNT_H
  14.  
  15. #include <netinet/in.h>
  16.  
  17. struct smb_mount_data
  18. {
  19.   unsigned int fd;
  20.  
  21.   struct sockaddr_in addr;
  22.  
  23.   char workgroup_name[17];
  24.   char server_name[17];
  25.   char client_name[17];
  26.   char service[64];
  27.  
  28.   char username[64];
  29.   char password[64];
  30.  
  31.   unsigned short max_xmit;
  32. };
  33.  
  34. #endif
  35.